Get UserOps by wallet address
GET/userops/:address
Get UserOps by wallet address
Request
Path Parameters
address stringrequired
Example: {{wallet_address}}
Query Parameters
apiKey stringrequired
Example: {{publicKey}}
Responses
- 200
- 403
OK
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- Array [
- ]
- ]
data object
userOps object[]
id string
transactionHash string
userOpHash string
sender string
entryPoint string
paymaster string
paymasterAndData string
bundler string
nonce string
initCode string
actualGasCost string
actualGasUsed string
callGasLimit string
verificationGasLimit string
preVerificationGas string
maxFeePerGas string
maxPriorityFeePerGas string
baseFeePerGas string
gasPrice string
gasLimit string
signature string
success boolean
revertReason string
blockTime string
blockNumber string
network string
target string
accountTarget object
id string
userOpsCount string
callData string
beneficiary string
factory string
erc721Transfers undefined[]
from string
to string
tokenId string
contractAddress string
name string
symbol string
0
1
2
3
4
5
erc20Transfers undefined[]
from string
to string
value string
contractAddress string
name string
symbol string
decimals string
0
1
2
3
4
5
{
"data": {
"userOps": [
{
"id": "0x7fc29ae0592ce1235047b98f18679b6c9f81e55acd4b58513376fcec0c233d5d-1",
"transactionHash": "0x8f102263e0be9cc546b3cee15b485ad2c9dc27cbbb9dad0491c8d95772864fc0",
"userOpHash": "0x7fc29ae0592ce1235047b98f18679b6c9f81e55acd4b58513376fcec0c233d5d",
"sender": "{{wallet_address}}",
"entryPoint": "0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789",
"paymaster": "0xea1ba4305a07ced2bb5e42224d71abe0bc3c3f28",
"paymasterAndData": "0xea1ba4305a07ced2bb5e42224d71abe0bc3c3f280",
"bundler": "0x4e0df48f7584ad9ae9978c60178ef726345cc48a",
"nonce": "1639",
"initCode": "0x",
"actualGasCost": "3637220000000000",
"actualGasUsed": "363722",
"callGasLimit": "52598",
"verificationGasLimit": "140000",
"preVerificationGas": "297548",
"maxFeePerGas": "10000000000",
"maxPriorityFeePerGas": "10000000000",
"baseFeePerGas": null,
"gasPrice": "10000000000",
"gasLimit": "872160",
"signature": "0xc9e71bdfe27c9db58c6a57d579c8558b2dd540263a330b347d30834d5930cf3230ffef12eafc392fbc19ac66d5ac8bafb74121633531917cb7f5346c1bd8414f1b",
"success": true,
"revertReason": null,
"blockTime": "1709474985",
"blockNumber": "28299801",
"network": "fuse",
"target": "{{wallet_address}}",
"accountTarget": {
"id": "{{wallet_address}}",
"userOpsCount": "3656"
},
"callData": "0xb61d27f6000000000000000000000000e65513fe95f52f4350d2184c2fd722c37e6fd995",
"beneficiary": "0xdcdd0ddeaa0407c26dfcd481de9a34e1c55f8d54",
"factory": "0x",
"erc721Transfers": [
null
],
"erc20Transfers": [
null
]
}
]
}
}
Forbidden
- application/json
- Schema
- Example (from schema)
Schema
statusCode integer
errorMessage object
statusCode integer
message string
error string
path string
{
"statusCode": 403,
"errorMessage": {
"statusCode": 403,
"message": "Forbidden resource",
"error": "Forbidden"
},
"path": "/api/v0/graphql/userops{{wallet_address}}={{wrong_api_key}}"
}
Loading...